home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2018 July / PCgo 07-2018 CD-ROM Germany.iso / nw.pak / Unnamed File 005251.txt < prev    next >
Encoding:
Text File  |  2015-07-29  |  1.7 KB  |  75 lines

  1. <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  4. <title>nw.js</title>
  5. <style>
  6. body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, form, fieldset, blockquote {
  7.     margin: 0; padding: 0; border: 0;
  8. }
  9.  
  10. body {
  11.     background: #eee;
  12. }
  13.  
  14. #ver {
  15.     background: #474747; display: table; color: #ccc;
  16.     text-align: right;
  17.     position: absolute;
  18.     bottom: 0;
  19.     width: 100%;
  20. }
  21.  
  22. #inset {
  23.     width: 100%; height: 100%; background: #474747; display: table;
  24. }
  25.  
  26. #inset h1 {
  27.     text-align: center;
  28.     vertical-align: middle;
  29.     font-family: "League-Gothic", Courier;
  30.     font-size: 100px; text-transform: uppercase;
  31.     text-shadow: 0px 2px 3px #222;
  32.         display: table-cell;
  33.  
  34. }
  35.  
  36. .shimmer {
  37.   text-align: center;
  38.   color: rgba(55,55,55,0.1);
  39.   background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  40.   -webkit-background-size: 125px 100%;
  41.   -webkit-background-clip: text;
  42.   -webkit-animation-name: shimmer;
  43.   -webkit-animation-duration: 10s;
  44.   -webkit-animation-iteration-count: infinite;
  45.   background-repeat: no-repeat;
  46.   background-position: 0 0;
  47.   background-color: #222;
  48. }
  49.  
  50. @-webkit-keyframes shimmer {
  51.   0% {
  52.     background-position: top left;
  53.   }
  54.   20% {
  55.     background-position: top right;
  56.   }
  57.   100% {
  58.     background-position: top right;
  59.   }
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div id="inset">
  65.     <h1 class="shimmer">NW.js</h1>
  66. </div>
  67. <div id="ver">
  68.   nw.js v<script>document.write(process.versions['node-webkit']);</script><br/>
  69.   io.js v<script>document.write(process.versions['node']);</script><br/>
  70.   Chromium <script>document.write(process.versions['chromium']);</script><br/>
  71.   commit hash: <script>document.write(process.versions['nw-commit-id']);</script><br/>
  72. </div>
  73. </body>
  74. </html>
  75.